home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 1997
/
HAM Radio 1997.iso
/
vcls
/
imagelib
/
viewph.dpr
< prev
next >
Wrap
Text File
|
1996-04-08
|
443b
|
21 lines
program Viewph;
uses
Forms,
Uimage in 'UIMAGE.PAS' {Form1},
Ufullscr in 'UFULLSCR.PAS' {FullSlide},
Uabout in 'UABOUT.PAS' {AboutBox},
U_p_size in 'U_P_SIZE.PAS' {Printersize};
{$R *.RES}
begin
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TFullSlide, FullSlide);
Application.CreateForm(TAboutBox, AboutBox);
Application.CreateForm(TPrintersize, Printersize);
Application.Run;
end.